3110ca6dbf06922706848d4c9dc86a7b6046003e,clc/modules/image-manager/src/main/java/com/eucalyptus/images/WalrusProxy.java,WalrusProxy,getManifestData,#String#String#String#,134

Before Change


      GetObjectType msg = new GetObjectType( bucketName, objectName, true, false, true );
      msg.setUserId( userId );
      
      reply = ( GetObjectResponseType ) ServiceProxy.lookup( Component.walrus, Component.walrus.name( ) ).send( msg );
    }
    catch ( Exception e ) {
      throw new EucalyptusCloudException( "Failed to read manifest file: " + bucketName + "/" + objectName, e );

After Change


      GetObjectType msg = new GetObjectType( bucketName, objectName, true, false, true );
      msg.setUserId( userId );
      
      reply = ( GetObjectResponseType ) ServiceProxy.lookup( Component.walrus.getRegistryKey( Component.walrus.getHostAddress( ) ) ).send( msg );
    }
    catch ( Exception e ) {
      throw new EucalyptusCloudException( "Failed to read manifest file: " + bucketName + "/" + objectName, e );